macOS 安装数据库服务

macOS 安装数据库服务

macOS 10.12.6
macOS 10.13

位置

1
2
3
4
5
6
# 二进制文件
/usr/local/opt/
usr/local/Cellar

# 临时文件
/usr/local/var/

安装 MariaDB


Error: The brew link step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink share/man/man8/mysqld.8
/usr/local/share/man/man8 is not writable.

You can try again using:
brew link mariadb

解决方法

$ brew link mariadb
Linking /usr/local/Cellar/mariadb/10.2.9…
Error: Could not symlink share/man/man8/mysqld.8
/usr/local/share/man/man8 is not writable.

提示‘/usr/local/share/man/man8’ 不能写入

1
sudo chown -R $(whoami) /usr/local/share/man/man8

再次执行

1
2
brew link mariadb
​`

MAC下 brew link qt 出现的一些问题](http://www.cnblogs.com/o-din/p/5929037.html)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
brew install mariadb
brew services start mariadb

# iTerm2 输入 mysql 找不到这个命令
/usr/local/Cellar/mariadb/10.2.9/bin
/usr/local/opt/mariadb/bin

# 有时候没有自己建立sock文件,需要手动建立。
touch /tmp/mysql.sock

#### 安装 Redis

```shell
brew install redis

brew services start redis

redis-server /usr/local/etc/redis.conf

安装 MongoDB

1
2
3
4
5
brew install mongodb

brew services start mongodb

mongod --config /usr/local/etc/mongod.conf

×

纯属好玩

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

文章目录
  1. 1. macOS 安装数据库服务
    1. 1.0.0.1. 位置
    2. 1.0.0.2. 安装 MariaDB
  • 2. 解决方法
  • 3. 提示‘/usr/local/share/man/man8’ 不能写入
  • 4. 再次执行
    1. 4.0.0.1. 安装 MongoDB
  • ,